home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / HYP / H-I / HyperEdit.cpt / HyperEdit / background_2644.txt < prev    next >
Text File  |  1989-03-18  |  772b  |  33 lines

  1. -- background: 2644 from stack: in
  2. -- bmap block id: 3191
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (button)
  9. -- low flags: 00
  10. -- high flags: A000
  11. -- rect: left=66 top=51 right=103 bottom=131
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 27285 / 27285
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Hide Help
  20. ----- HyperTalk script -----
  21. on mouseup
  22.   get the visible of card field "Help"
  23.   if it = false then
  24.     show card field "Help"
  25.     set the name of the target to "Hide Help"
  26.     set the icon of the target to "Hide Help"
  27.   else
  28.     hide card field "Help"
  29.     set the name of the target to "Show Help"
  30.     set the icon of the target to "Show Help"
  31.   end if
  32. end mouseup
  33.